home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / etc / cron.daily / aptitude < prev    next >
Text File  |  2008-09-02  |  314b  |  12 lines

  1. #!/bin/sh
  2.  
  3. bak=/var/backups
  4.  
  5. # Shamelessly ripped from /etc/cron.daily/standard
  6. if test -f /var/lib/aptitude/pkgstates && cd $bak ; then
  7.     if ! cmp -s aptitude.pkgstates.0 /var/lib/aptitude/pkgstates ; then
  8.         cp -p /var/lib/aptitude/pkgstates aptitude.pkgstates
  9.         savelog -c 7 aptitude.pkgstates > /dev/null
  10.     fi
  11. fi
  12.